home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / pdsrt211.arc / MAKEFILE < prev    next >
Text File  |  1990-06-18  |  506b  |  20 lines

  1. SWITCHES= -w -mc -N -Z -O -G -f-
  2.  
  3. pdsort.exe:    pdsort.obj merge.obj isdev.obj queue.obj quicker.obj makefile
  4.     tcc $(SWITCHES) pdsort.obj merge.obj isdev.obj queue.obj quicker.obj
  5.  
  6. pdsort.obj:    pdsort.c queue.h makefile
  7.     tcc -c $(SWITCHES) pdsort
  8.  
  9. merge.obj:    merge.c queue.h makefile
  10.     tcc -c $(SWITCHES) merge
  11.  
  12. isdev.obj:    isdev.c makefile
  13.     tcc -c $(SWITCHES) isdev
  14.  
  15. queue.obj:    queue.c queue.h makefile
  16.     tcc -c $(SWITCHES) queue
  17.  
  18. quicker.obj:    quicker.c makefile
  19.     tcc -c $(SWITCHES) quicker
  20.